From f54013f2175478ab49aeeee81e1de9b171ed6a03 Mon Sep 17 00:00:00 2001 From: robertlipe Date: Thu, 13 Feb 2014 06:04:22 +0000 Subject: [PATCH] Actually widen the bitfield one bit, not change the default value. Doink! git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@4738 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpsbabel/defs.h b/gpsbabel/defs.h index f7c44c08e..2a6fe5817 100644 --- a/gpsbabel/defs.h +++ b/gpsbabel/defs.h @@ -376,7 +376,7 @@ public: wp_flags() : shortname_is_synthetic(0), cet_converted(0), - fmt_use(1), + fmt_use(0), temperature(0), proximity(0), course(0), @@ -386,7 +386,7 @@ public: new_trkseg(0) {} unsigned int shortname_is_synthetic:1; unsigned int cet_converted:1; /* strings are converted to UTF8; interesting only for input */ - unsigned int fmt_use:1; /* lightweight "extra data" */ + unsigned int fmt_use:2; /* lightweight "extra data" */ /* "flagged fields" */ unsigned int temperature:1; /* temperature field is set */ unsigned int proximity:1; /* proximity field is set */ -- 2.30.2